Open
Conversation
* Allow multiple ESSIDs to be ignored by appending all the -E/--ignore-essid values to the ignore_essids list * The check on whether to ignore an ESSID or not is now case sensitive for better control Signed-off-by: Radu Nicolau <radunicolau102@gmail.com>
* Finding and attacking an AP based on the ESSID is now case sensitive, for more precise control Signed-off-by: Radu Nicolau <radunicolau102@gmail.com>
simonblack
added a commit
to simonblack/wifite2
that referenced
this pull request
Dec 14, 2018
mendelgusmao
pushed a commit
to mendelgusmao/wifite2
that referenced
this pull request
Oct 21, 2024
Merge changes (Sourcery refactored)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently there is no way to specify multiple ESSIDs to ignore as described in issue #148. Instead of a simple string now the ignore_essid variable is a list of strings which we check inside the Airodump.filter_targets method. The -E paramater needs to be specified for each ignored AP.
I've also made the check case sensitive as I believe it allows better control. After all the SSID is case sensitive itself, there is little reason to make the check case insensitive, besides easier typing. I've also made attacking one target based on the ESSID case sensitive, for the same reasons. I can remove these changes need be.